home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / ABSLASH.CPP next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  186 b   |  12 lines

  1. #include <string.h>
  2.  
  3. char *AppendBackslash(char *Source)
  4. {
  5.   if (*Source) {
  6.     if (Source[strlen(Source)] != '\\') {
  7.       strcat(Source,"\\");
  8.     }
  9.   }
  10.   return(Source);
  11. }
  12.